home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2007 January, February, March & April
/
Chip-Cover-CD-2007-02.iso
/
Pakiet bezpieczenstwa
/
mini Pentoo LiveCD 2006.1
/
mpentoo-2006.1.iso
/
livecd.squashfs
/
usr
/
include
/
repair
/
lost_found.h
< prev
next >
Wrap
C/C++ Source or Header
|
2006-01-09
|
762b
|
31 lines
/* Copyright 2001, 2002, 2003, 2004 by Hans Reiser, licensing governed by
reiser4progs/COPYING.
repair/filter.h -- the structures and methods needed for lost&found
pass of fsck. */
#ifndef REPAIR_LOST_FOUND_H
#define REPAIR_LOST_FOUNS_H
#include <time.h>
#include <repair/librepair.h>
/* Statistics gathered during the pass. */
typedef struct repair_lost_found_stat {
time_t time;
} repair_lost_found_stat_t;
/* Data filter works on. */
typedef struct repair_lost_found {
repair_data_t *repair;
aal_list_t *path;
repair_progress_handler_t *progress_handler;
repair_progress_t *progress;
reiser4_object_t *lost;
repair_lost_found_stat_t stat;
} repair_lost_found_t;
extern errno_t repair_lost_found(repair_lost_found_t *lf);
#endif